(welcome "This utility will update your Coarse Angler disk to the full unrestricted version. " "It will also install the game to your Hard Disk if you require.")
(set @default-dest "")
(set tmp @user-level)
(user tmp)
(set sc "Fishing1200.update")
(set update_file
(askbool
(prompt "Do you have an accelerated Amiga?")
(choices "No" "Yes")
(help "For those with a fast machine a slowed version will be installed.\nIf you find the game too slow, install again using the normal game.")
))
(if (= update_file 1)
(set sc "CA-Update:Fishing.update")
)
(copyfiles
(source sc)
(dest "RAM:")
(newname "Fishing")
)
(copyfiles
(source "CA-Update:Name.update")
(dest "RAM:")
(newname "PLAYER.NAM")
)
(askdisk
(prompt "Please insert Coarse Angler disk \n in any drive")
(help "Do you really need help with this?")
(dest "CoarseAngler")
)
(copyfiles
(source "RAM:Fishing")
(dest "CoarseAngler:")
)
(copyfiles
(source "RAM:PLAYER.NAM")
(dest "CoarseAngler:Graphics/")
)
(delete "RAM:Fishing")
(delete "RAM:PLAYER.NAM")
(set question
(askbool
(prompt "Do you wish to install the \n game to Hard Disk?")
(help "YES or NO?")
(choices "No" "Go Ahead")
))
(if (= question 1)
(exit "Update Completed.")
)
(set #which-disk
(cat "In which partition should the game be installed?"
))
(set #which-disk-help
(cat "\nThis section lets you choose on which hard drive partition the "
"Game files will be installed. "
@askdir-help
))
(set target (askdir (prompt #which-disk)
(help #which-disk-help)
(default "WORK:")
(disk)
))
(askdisk (prompt "Please Insert Coarse Angler Disk \n in any drive.")
(help "Do you need help on this?")
(dest "CoarseAngler")
)
(copyfiles
(source "CoarseAngler:Fishing")
(dest target)
(infos)
)
(copyfiles
(source "CoarseAngler:")
(dest target)
(pattern "Graphics")
)
(askdisk (prompt "Please insert PEGDATA Disk \n in any drive.")
(help "No help on this subject")
(dest "Pegdata")
)
(copyfiles
(source "Pegdata:")
(dest target)
(all)
)
(startup "CoarseAngler"
(prompt "Some commands need to be \n added to your \n Startup Sequence")